internal/filepathlite.lazybuf.w (field)

20 uses

	internal/filepathlite (current package)
		path.go#L27: 	w          int
		path.go#L41: 		if b.w < len(b.path) && b.path[b.w] == c {
		path.go#L42: 			b.w++
		path.go#L46: 		copy(b.buf, b.path[:b.w])
		path.go#L48: 	b.buf[b.w] = c
		path.go#L49: 	b.w++
		path.go#L54: 	b.w += len(prefix)
		path.go#L59: 		return b.volAndPath[:b.volLen+b.w]
		path.go#L61: 	return b.volAndPath[:b.volLen] + string(b.buf[:b.w])
		path.go#L103: 			case out.w > dotdot:
		path.go#L105: 				out.w--
		path.go#L106: 				for out.w > dotdot && !IsPathSeparator(out.index(out.w)) {
		path.go#L107: 					out.w--
		path.go#L111: 				if out.w > 0 {
		path.go#L116: 				dotdot = out.w
		path.go#L121: 			if rooted && out.w != 1 || !rooted && out.w != 0 {
		path.go#L132: 	if out.w == 0 {